home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 October: Technology Seed / ADC Seed CD - October 1999.toast / Carbon SDK 1.0d10c3 / Sample Code / SimpleText / AboutBox.r < prev    next >
Encoding:
Text File  |  1999-05-04  |  818 b   |  45 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        AboutBox.r
  3.  
  4.     Contains:    About box for simple text application
  5.  
  6.     Written by:    Tom Dowdy
  7.  
  8.     Copyright:    © 1993, 1995, 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.     $Log: AboutBox.r,v $
  13.     Revision 1.1.1.1  1998/03/18 22:56:00  ivory
  14.     Initial checkin of SimpleText.
  15.  
  16.  * 
  17.  * 2     7/30/97 3:42 PM Tom Dowdy
  18.  * Live scrolling now
  19.  * 
  20.  * 1     7/28/97 11:11 AM Duane Byram
  21.  * first added to Source Safe project
  22.  
  23.          <1>     8/21/95    TD        First checked in.
  24.  
  25. */
  26.  
  27.  
  28. #include "AboutBox.h"
  29.  
  30. resource 'WIND' (kAboutWindowID, purgeable) {
  31.     {100, 100, 215, 400}, noGrowDocProc, invisible, goAway, 0, ABOUTBOXTITLE, alertPositionMainScreen
  32. };
  33.  
  34.  
  35. resource 'STR#' (kAboutStrings, purgeable) {
  36.     {
  37.     ABOUTSTRING1;
  38.     ABOUTSTRING2;
  39.     ABOUTSTRING3;
  40.     ABOUTSTRING4;
  41.     ABOUTSTRING5;
  42.     ABOUTSTRING6;
  43.     };
  44. };
  45.